home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / template / template.rc < prev    next >
Text File  |  1995-11-25  |  3KB  |  111 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // <<DEFCONTROLNAME>>.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24. RESID_TOOLBOX_BITMAP    BITMAP DISCARDABLE "<<DEFCONTROLTRUNCNAME>>Ctl.Bmp"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Our Non-Localized Type Library
  29. //
  30. 1 TYPELIB <<DEFCONTROLNAME>>.TLB
  31.  
  32.  
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  36. /////////////////////////////////////////////////////////////////////////////
  37.  
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. //
  42. // String tables with Exception Information, etc.
  43. //
  44. STRINGTABLE DISCARDABLE
  45. BEGIN
  46.     IDS_PROPERTIES,                     "<<DEFCONTROLNAME>> Properties"
  47.     IDS_<<DEFCONTROLNAMECAPS>>_GENERALPAGETITLE,        "General Properties"
  48.     IDS_<<DEFCONTROLNAMECAPS>>_GENERALDOCSTRING,        "General properties for the <<DEFCONTROLNAME>> control"
  49. END
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. //
  53. // Property Page Dialog
  54. //
  55.  
  56. IDD_PROPPAGE_<<DEFCONTROLNAMECAPS>>GENERAL DIALOG DISCARDABLE  0, 0, 195, 127
  57. STYLE WS_CHILD | 0x4
  58. FONT 8, "MS Sans Serif"
  59. BEGIN
  60. END
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63. // Version Information
  64. /////////////////////////////////////////////////////////////////////////////
  65. //
  66. #include "dwinvers.h"
  67. #include <winver.h>
  68.  
  69. VS_VERSION_INFO VERSIONINFO
  70.  
  71. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  72. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  73.  
  74.  
  75. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  76. #ifdef DEBUG
  77. FILEFLAGS    VS_FF_DEBUG
  78. #else
  79. FILEFLAGS    0L
  80. #endif
  81.  
  82. FILEOS        VOS_NT_WINDOWS32
  83.  
  84. FILETYPE    VFT_DLL
  85. FILESUBTYPE    0
  86. {
  87.     BLOCK "StringFileInfo"
  88.     {
  89.         BLOCK "040904B0" // Language and character set identifiers.
  90.         {
  91.             VALUE "CompanyName",     "My Company Name\0"
  92.             VALUE "FileDescription", "<<DEFCONTROLNAME>>"
  93.             VALUE "FileVersion",     vszVersNumAll
  94.             VALUE "InternalName",    "<<DEFCONTROLNAME>>.Ocx\0"
  95.             VALUE "LegalCopyright",  vszCopyright
  96.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  97.             VALUE "ProductName",     "<<DEFCONTROLNAME>> Object Library\0"
  98.             VALUE "ProductVersion",  vszVersNumAll
  99.             VALUE "Comments",        vszMakeDate
  100.             VALUE "OLESelfRegister", "\0"
  101.         }
  102.     }
  103.     BLOCK "VarFileInfo"
  104.     {
  105.         VALUE "Translation" ,0x409, 0x4b0
  106.     }
  107. }
  108.  
  109.  
  110.  
  111.